Beecrowd Solution of of 1004

 

First try it yourself



#include <stdio.h>

 

int main() {

    int A,B,PROD;

    scanf("%d%d", &A,&B);

    PROD=A*B;

    printf("PROD = %d\n", PROD);

 

    return 0;

}

Post a Comment

Previous Post Next Post